projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eb715c3
)
GtkPrintUnixDialog: Use a better busy cursor
author
Matthias Clasen
<mclasen@redhat.com>
Fri, 8 May 2015 02:24:19 +0000
(22:24 -0400)
committer
Matthias Clasen
<mclasen@redhat.com>
Fri, 8 May 2015 02:24:19 +0000
(22:24 -0400)
gtk/gtkprintunixdialog.c
patch
|
blob
|
history
diff --git
a/gtk/gtkprintunixdialog.c
b/gtk/gtkprintunixdialog.c
index 9f994cfd5b6591ffb5c3957afbf10fc1159fe305..fe7f6f09c9ff817eb8e014be043917051cde7415 100644
(file)
--- a/
gtk/gtkprintunixdialog.c
+++ b/
gtk/gtkprintunixdialog.c
@@
-584,7
+584,11
@@
set_busy_cursor (GtkPrintUnixDialog *dialog,
display = gtk_widget_get_display (widget);
if (busy)
- cursor = gdk_cursor_new_for_display (display, GDK_WATCH);
+ {
+ cursor = gdk_cursor_new_from_name (display, "left_ptr_watch");
+ if (cursor == NULL)
+ cursor = gdk_cursor_new_for_display (display, GDK_WATCH);
+ }
else
cursor = NULL;